home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 November / EnigmA AMIGA RUN 02 (1995)(G.R. Edizioni)(IT)[!][issue 1995-11][Skylink CD].iso / earcd / util / arcer / disksque.lha / DiskSqueeze! / Install < prev    next >
Text File  |  1995-08-29  |  2KB  |  80 lines

  1. (
  2.   (working "Installing DiskSqueeze! v1.01")
  3.  
  4. (set @default-dest "")
  5.  
  6. (if (< (getversion "LIBS:version.library") (* 37 65536))
  7.    (abort "DiskSqueeze! requires Workbench 2.0 or higher")
  8. )
  9.  
  10. (set dsq_dest
  11.    (askdir
  12.       (prompt "In which drawer should DiskSqueeze! & tools be copied?")
  13.       (help @askdir-help)
  14.       (default "SYS:Tools")
  15.    )
  16. )
  17.       (copyfiles
  18.         (prompt "Copying the main file (with MagicWB icon)")
  19.         (source "DiskSqueeze!")
  20.         (dest dsq_dest)
  21.       )
  22.  
  23.       (copyfiles
  24.         (prompt "Copying the DiskSqueeze! MagicWB icon")
  25.         (source "DiskSqueeze!.info")
  26.         (dest dsq_dest)
  27.       )
  28.  
  29.       (copyfiles
  30.         (prompt "Copying the SpeedUp ENV-install utility")
  31.         (source "SpeedUp")
  32.         (dest dsq_dest)
  33.       )
  34.  
  35.       (copyfiles
  36.         (prompt "Copying the SpeedUp ENV-install MagicWB icon")
  37.         (source "SpeedUp.info")
  38.         (dest dsq_dest)
  39.       )
  40.  
  41.       (copyfiles
  42.         (prompt "Copying the necessary tools. Don't forget to install LZX and DMS! (not included here)")
  43.         (help @copyfiles-help)
  44.         (source "Programs/")
  45.         (ALL)
  46.         (dest dsq_dest)
  47.         (confirm)
  48.         (infos)
  49.       )
  50.  
  51.       (copyfiles
  52.        (prompt "Copying the Requester commands to your C: dir\n>>> for OS 2.x only!!! <<<\n(OS 3.x users already have these!)")
  53.        (help @copyfiles-help)
  54.        (source "C/")
  55.        (ALL)
  56.        (dest "C:")
  57.        (confirm)
  58.       )
  59.  
  60.       (copyfiles
  61.         (prompt "Select the document-files to copy")
  62.         (help @copyfiles-help)
  63.         (source "Documents/")
  64.         (ALL)
  65.         (dest dsq_dest)
  66.         (confirm)
  67.         (infos)
  68.       )
  69.  
  70.        (copyfiles
  71.          (prompt "Select the Ram-Drive mountfiles (880K) to copy")
  72.          (help @copyfiles-help)
  73.          (source "Storage/DOSdrivers")
  74.          (ALL)
  75.          (dest "SYS:Storage/DOSdrivers")
  76.          (confirm)
  77.          (infos)
  78.        )
  79. )
  80.